home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality StarterKit / Virtual Reality StarterKit.iso / sop10000 / copyfile.swt / SWTDEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-11  |  1.0 KB  |  54 lines

  1. @echo off
  2. cls
  3. echo.
  4. type v900.txt
  5. pause
  6. :start 
  7. cls
  8. echo     After running SETUP and trying out the program, if your 
  9. echo     sound board will not play the sound files or acts 
  10. echo     unpredictably print out the Fixme file (option 3).
  11. echo.
  12. echo.
  13. echo  Choose one of the selections below:
  14. echo.
  15. echo     1. RUN Virtural Reality Information. 
  16. echo     2. SETUP the configuration to match your PC's hardware.
  17. echo           (Use this option to install the software.)
  18. echo     3. Print the Fixme file.
  19. echo     4. QUIT.
  20. echo.
  21. echo     Please enter the number for your choice.   Enter 1-4 only.
  22. query
  23. if errorlevel = 5 goto invalid  
  24. if errorlevel = 4 goto end
  25. if errorlevel = 3 goto print
  26. if errorlevel = 2 goto reset
  27. if errorlevel = 1 goto run
  28.  
  29. :invalid
  30. cls
  31. echo Invalid option
  32. goto start
  33. goto end
  34.  
  35. REM Run game   
  36. :run
  37. v900.bat
  38. goto end
  39.  
  40. Rem print out
  41. :print
  42. print %1:\sop10000\fixdma.txt
  43. goto start
  44.  
  45. REM reconfig setup
  46. :reset
  47. cls
  48. echo.
  49. pause
  50. call SETUP.bat
  51. goto start
  52. goto end 
  53. :end
  54.